home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-03-04 | 454 b | 31 lines | [TEXT/ToyS] |
- global gasQuit
-
-
- on run
- set gasQuit to false
-
- repeat while not gasQuit
- pause for 600 with seconds timing
- ShowMessage("10 minute loop…")
- end repeat
- end run
-
-
- on quit
- set gasQuit to true
- ShowMessage("You quit me!")
- continue quit
- end quit
-
-
- on eep()
- ShowMessage("You eep'd me!")
- end eep
-
-
- on ShowMessage(msg)
- set iw to display info titled "Ouch!" message msg
- beep
- pause for 2 with seconds timing
- display info iw with disposal
- end ShowMessage